home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / 14 assemblies / testassembly / assemblyinfo.vb next >
Encoding:
Text File  |  2002-03-20  |  1.3 KB  |  39 lines

  1. Imports System.Reflection
  2. Imports System.Runtime.InteropServices
  3.  
  4. ' General Information about an assembly is controlled through the following 
  5. ' set of attributes. Change these attribute values to modify the information
  6. ' associated with an assembly.
  7.  
  8. ' Review the values of the assembly attributes
  9. <Assembly: AssemblyTitle("")> 
  10. <Assembly: AssemblyDescription("")> 
  11. <Assembly: AssemblyCompany("")> 
  12. <Assembly: AssemblyProduct("")> 
  13. <Assembly: AssemblyCopyright("")> 
  14. <Assembly: AssemblyTrademark("")> 
  15. <Assembly: CLSCompliant(True)> 
  16.  
  17. ' assign True to this constant to generate a partially-signed assembly
  18. #Const GENERATE_PARTIALLY_SIGNED_ASSEMBLY = False
  19.  
  20. #If GENERATE_PARTIALLY_SIGNED_ASSEMBLY = False Then
  21. ' this attribute generates an assembly with strong name
  22. <Assembly: AssemblyKeyFile("KeyFile.snk")> 
  23.  
  24. #Else
  25.  
  26. ' these attributes generate a partially-signed assembly
  27. <Assembly: AssemblyKeyFile("KeyFile.sn$")> 
  28. <Assembly: AssemblyDelaySign(True)> 
  29. #End If
  30.  
  31. 'The following GUID is for the ID of the typelib if this project is exposed to COM
  32. <Assembly: Guid("2698BCFE-2416-460D-8DB1-90E076F32494")> 
  33.  
  34. ' Version information for an assembly consists of the following four values:
  35. <Assembly: AssemblyVersion("1.1.0.0")> 
  36. <Assembly: AssemblyCulture("")> 
  37.  
  38.  
  39.